home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / texted1a / frmabout.frm (.txt) < prev    next >
Visual Basic Form  |  1999-10-12  |  1KB  |  37 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "About MyApp"
  5.    ClientHeight    =   3630
  6.    ClientLeft      =   2340
  7.    ClientTop       =   1935
  8.    ClientWidth     =   6810
  9.    ClipControls    =   0   'False
  10.    LinkTopic       =   "Form2"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    Picture         =   "frmAbout.frx":0000
  14.    ScaleHeight     =   2505.49
  15.    ScaleMode       =   0  'User
  16.    ScaleWidth      =   6394.942
  17.    ShowInTaskbar   =   0   'False
  18.    Begin VB.CommandButton cmdOK 
  19.       Cancel          =   -1  'True
  20.       Caption         =   "OK"
  21.       Default         =   -1  'True
  22.       Height          =   225
  23.       Left            =   5880
  24.       TabIndex        =   0
  25.       Top             =   3360
  26.       Width           =   780
  27.    End
  28. Attribute VB_Name = "frmAbout"
  29. Attribute VB_GlobalNameSpace = False
  30. Attribute VB_Creatable = False
  31. Attribute VB_PredeclaredId = True
  32. Attribute VB_Exposed = False
  33. Option Explicit
  34. Private Sub cmdOK_Click()
  35.   Unload Me
  36. End Sub
  37.